home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 050a / elftree.zip / SAMPLE.ETU < prev    next >
Text File  |  1992-01-25  |  2KB  |  54 lines

  1. :Sample ELFTREE Menu
  2. ***
  3. * This is designed to get you started designing a menu in ELFTREE.
  4. * Here are the basic ideas:
  5. ***
  6. * : A menu title line starts with a colon (see 1st line, above).
  7. * * A comment line starts with one or more asterisks.
  8. * ! A help line starts with one or more exclamation symbols.
  9. * @ The @ symbol precedes the key that selects the item.
  10. * $ End a menu description with a dollar symbol.
  11. *   Commands should immediately follow the dollar symbol (if used).
  12. *   Commands can use symbols to represent various actions to take.
  13. *   Menu names (with extension .ETU) can be used as commands.
  14. ***
  15. * Here are some sample menu commands:
  16. *
  17. * Put the menu           After the dollar
  18. *  description        ┌─ symbol, put the
  19. *   here              │  command
  20. *     │               │   │
  21. *     │               │   │
  22. *                       
  23. Copy file to @A       ${Macro}ca~y
  24. *** {Macro} designates an internal keyboard macro (see item above).
  25. ***
  26. *** {DInput} and {Input} are used to prompt for input from the user.
  27. !See if any lost clusters are out there.
  28. Disk Check           $c:\dos\chkdsk /f {DInput}"C:"{Input}"Please enter the disk you wish to be tested~Tap [Enter] to accept the default"
  29. ***
  30. Make editor @not swap ${Macro}=4kc:\tree\elfedit.exe~~n@
  31. Make editor @swap     ${Macro}=4kc:\tree\elfedit.exe~~y@
  32. *
  33. *** {Nowait} makes ET immediately reload after execution ends.
  34. Disk @utilities       $d:\nu\nu.exe /bw{nowait}
  35. *
  36. !Borland's spreadsheet program
  37. Quattro Pro          $d:\qpro\q.exe{MoveTo}
  38. *
  39. Reminders            $c:\rr c all
  40. *
  41. *** Here's an example of how to link up a submenu.
  42. Archi@ve menu         $ARCHIVE.ETU
  43. *
  44. Word processing      $c:\wp51\wp.exe{nowait}
  45. *
  46. *** {MoveTo} makes ET change to the needed directory before execution.
  47. Refle@X              $d:\reflex\reflex.exe{MoveTo}
  48. *
  49. *** {Zero} makes ET shrink to 0K before running this.
  50. Map memory           $c:\tree\etmap.exe{Zero}
  51. *
  52. *** Here's an example that puts several commands together.
  53. Multiple @commands    $cd \^type config.sys^type autoexec.bat{zero}
  54.